home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / progr / svga2.arj / README < prev    next >
Encoding:
Text File  |  1993-06-23  |  6.8 KB  |  196 lines

  1. **************************************************************
  2.              Copyright 1991-1993
  3.           Jordan Hargraphix Software
  4.              All Rights Reserved
  5.  
  6.         PORTIONS COPYRIGHT JOHN BRIDGES, 1990
  7.            CHRISTOPHER MORGAN, 1984
  8. **************************************************************
  9.  
  10. Here they are! The SuperVGA/Tweak BGI drivers you have all been waiting for! ;->
  11.  
  12.   These drivers support a wide range of VGA cards, and should work on
  13. all major brands.
  14.  
  15. Card types supported: (SuperVGA drivers)
  16.   Ahead, ATI, Chips & Tech, Everex, Genoa, Paradise, Oak, Trident (both 8800 
  17. and 8900, 9000), Tseng (both 3000 and 4000 chipsets) and Video7.
  18.   These drivers will also work on video cards with VESA capability.
  19.   The tweaked drivers will work on any register-compatible VGA card.
  20.  
  21. I have not tested these drivers on all these card types, so I can not guarantee
  22. perfect operation with your card.  I have tested them extensively
  23. on Trident, Tseng and ATI cards, and have had no problems. 
  24.  
  25.   Cards with occasional problems: (try using a VESA driver)
  26.     Trident
  27.     OAK
  28.  
  29. Modes currently supported:
  30.   SuperVGA 16-color
  31.    0) Standard EGA/VGA 320x200x16
  32.    1) Standard EGA/VGA 640x200x16
  33.    2) Standard EGA/VGA 640x350x16
  34.    3) Standard VGA 640x480x16
  35.    4) SuperVGA/VESA 800x600x16
  36.    5) SuperVGA/VESA 1024x768x16
  37.  
  38.   SuperVGA 256-color
  39.    0) Standard VGA/MCGA 320x200x256
  40.    1) 256k Svga/VESA 640x400x256
  41.    2) 512k Svga/VESA 640x480x256
  42.    3) 512k Svga/VESA 800x600x256
  43.    4) 1024k Svga/VESA 1024x768x256
  44.    5) 256k Svga 640x350x256
  45.    6) 1280k+ VESA 1280x1024x256
  46.  
  47.  * SuperVGA 32768-color BGI driver for HiColor cards
  48.    
  49.   SuperVGA 32768-color
  50.    0) 320x200x32768
  51.    1) 640x350x32768
  52.    2) 640x400x32768
  53.    3) 640x480x32768
  54.    4) 800x600x32768
  55.  
  56.  * SuperVGA 65536-color BGI driver for HiColor cards
  57.  
  58.   SuperVGA 65536-color
  59.    0) 320x200x65536
  60.    1) 640x350x65536
  61.    2) 640x400x65536
  62.    3) 640x480x65536
  63.    4) 800x600x65536
  64.  
  65.   * WARNING: The tweaked drivers do not use standard BIOS modes, instead
  66.     they program the CRTC directly.  You must have a register-compatible
  67.     VGA card to use these drivers. You must also be sure that your monitor
  68.     can handle the sync rates (the sync COULD damage your monitor)
  69.  
  70.   Tweaked 16-color
  71.    0) 704x528x16
  72.    1) 720x540x16
  73.    2) 736x552x16
  74.    3) 752x564x16
  75.    4) 768x576x16
  76.    5) 784x588x16
  77.    6) 800x600x16
  78.  
  79.   Tweaked 256-color
  80.    0) 320x400x256
  81.    1) 320x480x256
  82.    2) 360x480x256
  83.    3) 376x564x256
  84.    4) 400x564x256
  85.    5) 400x600x256
  86.    6) 320x240x256
  87.  
  88.  * New SuperVGA driver for S3 cards. (Orchid Farenheit 1280, Diamond Stealth)
  89.    Uses extended features of the S3 chip to provide enhanced performance.
  90.    (All functions work, though there is still a bug in putimage)
  91.  
  92.   S3 Accelerator 16/256/32768-color
  93.    0) 640x480x256
  94.    1) 800x600x256
  95.    2) 1024x768x256
  96.    3) 800x600x16
  97.    4) 1024x768x16
  98.    5) 1280x960x16
  99.    6) 1280x1024x16
  100.    7) 640x480x32768
  101.  
  102. ----------------------------------------------------------------------------
  103. INSTALLATION:
  104.   Using the driver in existing programs is easy. (If you have the source)
  105.  
  106.   Check the files INITSVGA.C and INITSVGA.PAS for examples of installation
  107. into C and Pascal programs.
  108.  
  109. ----------------------------------------------------------------------------
  110. NOTE: 
  111.  
  112.  * The mouse cursor may not work in all modes of my driver.  This is because
  113.    no current mouse drivers support SuperVGA/Tweak modes.
  114.  
  115.  * Registerfarbgidriver DOES work properly with C/C++... (8/1/91)
  116.    Check INITSVGA.C and the makefile for examples of how to use.
  117.  
  118.  * Registerbgidriver also works with Turbo Pascal. Check the file newinit.pas
  119.    for an example.
  120.  
  121.  * Imagesize does not work. (the kernel does not call the driver to do this)
  122.    Use the following formulas:
  123.     * imsize = ((xwid >> 1)+1)*ywid+4;     (16-color)
  124.     * imsize = xwid*ywid+4;         (256-color)
  125.     * imsize = 2*xwid*ywid+4;        (32768/65536-color)
  126.  
  127.  * The .CHR files needed by the VGADEMO program are version 1.00 (dated
  128.    October 1987), so if the fonts do not work properly with the demo program,
  129.    you are probably using the newer fonts (eg. 1.1 dated June 1989 do not work
  130.    properly).  This is a fault of the BGI kernel that the demo program was
  131.    compiled with (Turbo Pascal 5.5 doesn't recognize the newer version)
  132.  
  133.  * If nothing appears on the screen when you draw in 256/32k modes, try
  134.    setting the draw color to white (15 on Svga256, see notes.32k for Svga32k)
  135.    The BGI kernel sets the initial draw color to the maximum color (255),
  136.    which is usually black.
  137.  
  138. ----------------------------------------------------------------------------
  139. WARNING: The drivers do not test to see if the card installed is
  140. actually a VGA card (If the Svga drivers do not detect a SuperVGA card, they 
  141. treat the card as a standard VGA), so DO NOT use the drivers if you do not 
  142. have a VGA card installed.
  143.  
  144. -------------------------------------------------------------------------
  145. REGISTRATION:
  146.   I have decided to release these drivers free of charge,
  147. although donations would be greatly appreciated and certainly
  148. expedite the release of future versions. :->
  149.   The drivers have not been crippled in any way, though beta releases of new
  150. drivers may have some functions yet unimplemented.  
  151.  
  152. Registration fees:
  153.  
  154.     SuperVGA S3            $20
  155.     SuperVGA 32768            $20
  156.     SuperVGA 65536
  157.     SuperVGA 256             $20
  158.     SuperVGA 16            $20
  159.     Tweak 16            $20
  160.     Tweak 256            $20
  161.  
  162.     Any two:            $30
  163.     Any three:            $40
  164.     Any four:            $50
  165.     Any five:            $60
  166.     Any six:            $70
  167.     All seven:            $80
  168.  
  169. With donations of $20 and up, you will be considered a registered user.
  170. Registered users get the full source code and upgrades on future releases.
  171.  
  172. Please send checks/money to: (As of July 1, 1993)
  173.     Jordan Hargrave
  174.     11701 Metric Blvd, Apt #1726
  175.     Austin, TX 78758
  176.     (512) 834-8164 voice
  177.     (512) 834-8499 data/fax
  178.  
  179. I have started working on a new graphics library that will support resolutions
  180. from 160x200 (Ick! ;->) all the way up to 1280x1024, and from 1-bit color
  181. to 24-bit color.  It will support a wide range of cards and I need testers
  182. for XGA/8514/Hercules Graphics Station cards.
  183.  
  184. (Note: This library is NOT a BGI driver.  It attempts to fix some of the 
  185.        problems I've found with the BGI kernel, ie. the number of colors is
  186.        limited to 256 in the BGI kernel)
  187.  
  188. (Current library is non-functional)
  189.  
  190. ;;*===============================*===========================================*
  191. ;;| Jordan Powell Hargrave      |   Internet:    jh5y@andrew.cmu.edu          |
  192. ;;| 11701 Metric Blvd, #1726      |     Bitnet:    jh5y%andrew.cmu.edu@cmccvb    |
  193. ;;| Austin, TX 78758          |       UUCP:    uunet!andrew.cmu.edu!jh5y     |
  194. ;;| (512) 834-8164           | Compuserve:   [72510,1143]              |
  195. ;;*===============================*===========================================*
  196.